AccountId.fromJson constructor

AccountId.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory AccountId.fromJson(Map<String, Object?> json) {
  return AccountId(
    accountId: json[r'accountId'] as String? ?? '',
  );
}