ResolvedSource constructor

const ResolvedSource({
  1. required ConfigSourceKind kind,
  2. String? path,
  3. List<String> ignoredLegacy = const <String>[],
  4. bool isMultiFlavor = false,
})

Creates a ResolvedSource.

Implementation

const ResolvedSource({
  required this.kind,
  this.path,
  this.ignoredLegacy = const <String>[],
  this.isMultiFlavor = false,
});