Context constructor

Context({
  1. String yamlKeyName = "change_app_name",
  2. String androidManifestPath = "android/app/src/main/AndroidManifest.xml",
  3. String pubspecPath = "pubspec.yaml",
  4. String iosInfoPlistPath = "ios/Runner/Info.plist",
  5. String ohosPath = "ohos/",
  6. String windowsCmakePath = "windows/CMakeLists.txt",
  7. String windowsRunnerRcPath = "windows/runner/Runner.rc",
  8. String windowsMainCppPath = "windows/runner/main.cpp",
  9. String linuxCmakePath = "linux/CMakeLists.txt",
  10. String linuxMyApplicationPath = "linux/runner/my_application.cc",
  11. String macosAppInfoPath = "macos/Runner/Configs/AppInfo.xcconfig",
  12. String webManifestPath = "web/manifest.json",
  13. String webIndexPath = "web/index.html",
})

Implementation

Context({
  this.yamlKeyName = "change_app_name",
  this.androidManifestPath = "android/app/src/main/AndroidManifest.xml",
  this.pubspecPath = "pubspec.yaml",
  this.iosInfoPlistPath = "ios/Runner/Info.plist",
  this.ohosPath = "ohos/",
  this.windowsCmakePath = "windows/CMakeLists.txt",
  this.windowsRunnerRcPath = "windows/runner/Runner.rc",
  this.windowsMainCppPath = "windows/runner/main.cpp",
  this.linuxCmakePath = "linux/CMakeLists.txt",
  this.linuxMyApplicationPath = "linux/runner/my_application.cc",
  this.macosAppInfoPath = "macos/Runner/Configs/AppInfo.xcconfig",
  this.webManifestPath = "web/manifest.json",
  this.webIndexPath = "web/index.html",
});