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