PalletConstantMetadata constructor

const PalletConstantMetadata({
  1. required String name,
  2. required TypeId type,
  3. required List<int> value,
  4. required List<String> docs,
})

Implementation

const PalletConstantMetadata({
  required this.name,
  required this.type,
  required this.value,
  required this.docs,
});