google / google/built_value.dart
BuiltVlue Map<String, dynamic>
Open
question
- Dominant language
- Dart
- Stars
- 886
- Forks
- 195
- Avg merge
- 1d 11h
- Merged PRs (30d)
- 4
Description
dataSource:
{
"code": 200,
"data": {
"title": "home",
"select": true,
...
}
}
abstract class LoginResponse
implements Built {
int? get code;
Map? 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
Contributor guide
Assessment
This issue has not been assessed yet.