BlockStatement constructor

BlockStatement({
  1. List<TransactionStatement>? transactionStatements,
  2. List<AddressResolutionStatement>? addressResolutionStatements,
  3. List<MosaicResolutionStatement>? mosaicResolutionStatements,
})

Implementation

BlockStatement(
    {List<TransactionStatement>? transactionStatements,
    List<AddressResolutionStatement>? addressResolutionStatements,
    List<MosaicResolutionStatement>? mosaicResolutionStatements}) {
  this.transactionStatements = transactionStatements ?? [];
  this.addressResolutionStatements = addressResolutionStatements ?? [];
  this.mosaicResolutionStatements = mosaicResolutionStatements ?? [];
}