ProviderDeclarationNode constructor

ProviderDeclarationNode({
  1. required String providerType,
  2. required String providedClass,
  3. int? childOffset,
  4. int? childLength,
  5. required String filePath,
  6. required int offset,
  7. required int length,
})

Implementation

ProviderDeclarationNode({
  required this.providerType,
  required this.providedClass,
  this.childOffset,
  this.childLength,
  required super.filePath,
  required super.offset,
  required super.length,
});