toJson method
Converts the data to a JSON representation.
Implementation
@override
Map<String, dynamic> toJson() {
return {
"raw_data": rawData.toJson(),
"witness_signature": BytesUtils.tryToHexString(witnessSignature)
}..removeWhere((key, value) => value == null);
}