value property

  1. @override
Map<String, dynamic> value
override

Map containing the real value of the message.

Implementation

@override
Map<String, dynamic> get value => {
      'from_address': fromAddress,
      'to_address': toAddress,
      'amount': amount.map((coin) => coin.toJson()).toList(),
    };