pallets property

List<PalletMetadata> get pallets

Get the list of pallets

Implementation

List<PalletMetadata> get pallets {
  return switch (this) {
    final RuntimeMetadataV14 v14 => v14.pallets,
    final RuntimeMetadataV15 v15 => v15.pallets,
  };
}