ProviderMetadata<T> constructor

const ProviderMetadata<T>({
  1. required T classType,
  2. String? name,
  3. Function? useFactory,
})

Implementation

const ProviderMetadata({
  required this.classType,
  this.name,
  this.useFactory,
});