toXdrJsonValue method
Returns the SEP-0051 rendering of this XdrTransactionMetaV1.
Implementation
Object? toXdrJsonValue() => <String, Object?>{
'tx_changes': _txChanges.toXdrJsonValue(),
'operations': XdrJsonHelper.array<XdrOperationMeta>(
_operations,
(XdrOperationMeta v) => v.toXdrJsonValue(),
type: 'XdrTransactionMetaV1',
key: 'operations',
),
};