initial import
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class Account {
|
||||
final String name;
|
||||
final String label;
|
||||
Account({required this.name, required this.label});
|
||||
factory Account.fromJson(Map<String, dynamic> json) => Account(
|
||||
name: json['name'] as String,
|
||||
label: json['label'] as String,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user