import 'package:json_annotation/json_annotation.dart'; part 'base_list_data.g.dart'; @JsonSerializable(genericArgumentFactories: true, explicitToJson: true) class BaseListData { BaseListData({ this.code, this.data, this.extra, this.isSuccess, this.msg, this.path, this.timestamp, }); int? code; List? data; dynamic extra; bool? isError; bool? isSuccess; String? msg; String? path; String? timestamp; factory BaseListData.fromJson(Map json, fromJson) => _$BaseListDataFromJson(json, fromJson); Map toJson(toJson) => _$BaseListDataToJson(this, toJson); }