toJson method
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);
}