QueryAccountAddressByIDRequest.fromJson constructor

QueryAccountAddressByIDRequest.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory QueryAccountAddressByIDRequest.fromJson(Map<String, dynamic> json) {
  return QueryAccountAddressByIDRequest(
    id: json.valueAsBigInt<BigInt?>('id', acceptCamelCase: true),
    accountId: json.valueAsBigInt<BigInt?>(
      'account_id',
      acceptCamelCase: true,
    ),
  );
}