static Account fromJson(Map json) => Account( id: json['id'] as String? ?? '', name: json['name'] as String, type: json['type'] as String, );