toJson method

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

Convert the AccountCreateContract object to a JSON representation.

Implementation

@override
Map<String, dynamic> toJson() {
  return {
    'owner_address': ownerAddress,
    'account_address': accountAddress,
    'type': type?.name,
  }..removeWhere((key, value) => value == null);
}