RuntimeApiMetadataV16 constructor

const RuntimeApiMetadataV16({
  1. required String name,
  2. required List<RuntimeApiMethodMetadataV16> methods,
  3. List<String> docs = const [],
  4. required int version,
  5. required ItemDeprecationInfo deprecationInfo,
})

Implementation

const RuntimeApiMetadataV16({
  required this.name,
  required this.methods,
  this.docs = const [],
  required this.version,
  required this.deprecationInfo,
});