toJson method
Convert the WitnessCreateContract object to a JSON representation.
Implementation
@override
Map<String, dynamic> toJson() {
return {
"owner_address": ownerAddress.toString(),
"url": StringUtils.tryDecode(url),
}..removeWhere((k, v) => v == null);
}