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