SettingsHeadOffice.fromJson constructor
SettingsHeadOffice.fromJson(
- Object? json
Implementation
factory SettingsHeadOffice.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return SettingsHeadOffice(
address: AccountSupportAddress.fromJson(map['address']));
}