Files
tuiche/lib/controller/mh_controller/score_controller.g.dart
2025-06-06 09:18:06 +08:00

16 lines
511 B
Dart

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'score_controller.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
ScoreModel _$ScoreModelFromJson(Map<String, dynamic> json) =>
ScoreModel()..score = (json['score'] as num?)?.toInt();
Map<String, dynamic> _$ScoreModelToJson(ScoreModel instance) =>
<String, dynamic>{
'score': instance.score,
};