copyWith method

ConfigModel copyWith({
  1. String? iosInfoPlistPath,
  2. String? androidGradlePath,
})

Implementation

ConfigModel copyWith({String? iosInfoPlistPath, String? androidGradlePath}) {
  return ConfigModel(
    iosInfoPlistPath: iosInfoPlistPath ?? this.iosInfoPlistPath,
    androidGradlePath: androidGradlePath ?? this.androidGradlePath,
    configFilePath: configFilePath,
  );
}