Metadata constructor

Metadata({
  1. String? operationType,
  2. String? hash,
  3. DateTime? minedAt,
  4. String? sentFrom,
  5. String? sentTo,
  6. String? status,
  7. int? nonce,
  8. Application? application,
  9. String? chain,
})

Implementation

Metadata({
  this.operationType,
  this.hash,
  this.minedAt,
  this.sentFrom,
  this.sentTo,
  this.status,
  this.nonce,
  this.application,
  this.chain,
});