FileRepository constructor

FileRepository()

Implementation

FileRepository() {
  logger = Logger(filter: ProductionFilter());
  if (Platform.isMacOS || Platform.isLinux) {
    androidManifestPath = 'android/app/src/main/AndroidManifest.xml';
    iosInfoPlistPath = 'ios/Runner/Info.plist';
    androidAppBuildGradlePath = 'android/app/build.gradle';
    iosProjectPbxprojPath = 'ios/Runner.xcodeproj/project.pbxproj';
    macosAppInfoxprojPath = 'macos/Runner/Configs/AppInfo.xcconfig';
    launcherIconPath = 'assets/images/launcherIcon.png';
    linuxCMakeListsPath = 'linux/CMakeLists.txt';
    linuxAppCppPath = 'linux/my_application.cc';
    webAppPath = 'web/index.html';
    windowsAppPath = 'windows/runner/main.cpp';
    windowsAppRCPath = 'windows/runner/Runner.rc';
  }
}