workingFile property

File? get workingFile

Gets the current Flutter dart source file that is being worked on.

Implementation

File? get workingFile {
  return _workingFile == null
      ? null
      : filesystem.file(path.join(flutterPackageRoot.absolute.path, _workingFile!.path));
}