toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'network_identifier': networkIdentifier?.toJson(),
    'unsigned_transaction': unsignedTransaction,
    'signatures': signatures.map((e) => e.toJson()).toList(),
  }..removeWhere((key, value) => value == null);
}