PalletMetadata constructor

PalletMetadata({
  1. required String name,
  2. required PalletStorageMetadata? storage,
  3. required List<PalletConstantMetadata> constants,
  4. required int index,
  5. required List<String> docs,
  6. PalletCallMetadata? calls,
  7. PalletEventMetadata? event,
  8. PalletErrorMetadata? error,
})

Implementation

PalletMetadata({
  required this.name,
  required this.storage,
  required this.constants,
  required this.index,
  required this.docs,
  this.calls,
  this.event,
  this.error,
});