PackageInfo constructor

PackageInfo({
  1. required String name,
  2. String? version,
  3. String? description,
  4. required String path,
  5. bool isFlutterProject = false,
})

Implementation

PackageInfo(
    {required this.name,
    this.version,
    this.description,
    required this.path,
    this.isFlutterProject = false});