copyWith method

IosConfig copyWith({
  1. String? bundleId,
})

Implementation

IosConfig copyWith({String? bundleId}) {
  return IosConfig(bundleId: bundleId ?? this.bundleId);
}