AccountOrId.fromJson constructor
AccountOrId.fromJson(
- Object? json
Implementation
factory AccountOrId.fromJson(Object? json) {
if (json is String) {
return AccountId(id: json);
}
return Account.fromJson(json);
}