- Bump version to `0.1.7+45` and update SDK constraint to `>=3.8.0 <4.0.0`. - Update numerous dependencies
17 lines
597 B
Dart
17 lines
597 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'setReadMarkerParams.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
SetReadMarkerParams _$SetReadMarkerParamsFromJson(Map<String, dynamic> json) =>
|
|
SetReadMarkerParams(
|
|
lastReadMessage: (json['lastReadMessage'] as num?)?.toInt(),
|
|
);
|
|
|
|
Map<String, dynamic> _$SetReadMarkerParamsToJson(
|
|
SetReadMarkerParams instance,
|
|
) => <String, dynamic>{'lastReadMessage': instance.lastReadMessage};
|