toJson method

  1. @override
Map<String, dynamic> toJson()
override

Convert the BlockBalanceTraceBlockIdentifier object to a JSON representation.

Implementation

@override
Map<String, dynamic> toJson() {
  return {
    "hash": BytesUtils.tryToHexString(hash),
    "number": number?.toString(),
  };
}