QueryAccountResponse.fromJson constructor
Implementation
factory QueryAccountResponse.fromJson(Map<String, dynamic> json) {
return QueryAccountResponse(
balance: json.valueAsString<String?>('balance', acceptCamelCase: true),
codeHash: json.valueAsString<String?>('code_hash', acceptCamelCase: true),
nonce: json.valueAsBigInt<BigInt?>('nonce', acceptCamelCase: true),
);
}