ApiMethodMetadata constructor

const ApiMethodMetadata({
  1. required String name,
  2. required List<MethodInputEntryType> inputs,
  3. required TypeId output,
  4. required List<String> docs,
})

Implementation

const ApiMethodMetadata({
  required this.name,
  required this.inputs,
  required this.output,
  required this.docs,
});