Operation constructor

const Operation(
  1. String type,
  2. OperationIdentifier operationIdentifier,
  3. List<OperationIdentifier>? relatedOperations,
  4. String? status,
  5. AccountIdentifier? account,
  6. Amount? amount,
  7. CoinChange? coinChange,
  8. Map<String, dynamic>? metadata,
)

Implementation

const Operation(
  this.type,
  this.operationIdentifier,
  this.relatedOperations,
  this.status,
  this.account,
  this.amount,
  this.coinChange,
  this.metadata,
);