Message constructor

const Message({
  1. required String hash,
  2. Address? src,
  3. Address? dst,
  4. @amountJsonConverter required BigInt value,
  5. required bool bounce,
  6. required bool bounced,
  7. String? body,
  8. String? bodyHash,
})

Implementation

const factory Message({
  required final String hash,
  final Address? src,
  final Address? dst,
  @amountJsonConverter required final BigInt value,
  required final bool bounce,
  required final bool bounced,
  final String? body,
  final String? bodyHash,
}) = _Message;