class Account { final String name; final String label; Account({required this.name, required this.label}); factory Account.fromJson(Map json) => Account( name: json['name'] as String, label: json['label'] as String, ); }