dataSource:
{
"code": 200,
"data": {
"title": "home",
"select": true,
...
}
}
abstract class LoginResponse
implements Built<LoginResponse, LoginResponseBuilder> {
int? get code;
Map<String, dynamic>? data;
}
I don't need to care about the contents of the data, I just need to use Map to receive the data. What should I do