You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
468 B
15 lines
468 B
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'base_model.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
BaseModel _$BaseModelFromJson(Map<String, dynamic> json) => BaseModel(
|
|
code: json['code'] as int,
|
|
msg: json['msg'] as String,
|
|
success: json['success'] as bool,
|
|
data: json['data'],
|
|
);
|