Operation constructor

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

Implementation

Operation(this.type, this.operation_identifier, this.related_operations,
    this.status, this.account, this.amount, this.coin_change, this.metadata);