toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
  'operationType': operationType,
  'hash': hash,
  'minedAt': minedAt?.toIso8601String(),
  'sentFrom': sentFrom,
  'sentTo': sentTo,
  'status': status,
  'nonce': nonce,
  'application': application?.toJson(),
  'chain': chain,
};