class ApiDto { final int code; final String message; final T data; ApiDto({ required this.code, required this.message, required this.data }); factory ApiDto.fromJson(Map json) { return ApiDto( code: json['code'], message: json['message'], data: json['data'], ); } }