copyWith method

GoogleClientId copyWith({
  1. String? ios,
  2. String? android,
  3. String? web,
})

Implementation

GoogleClientId copyWith({
  String? ios,
  String? android,
  String? web,
}) {
  return GoogleClientId(
    ios: ios ?? this.ios,
    android: android ?? this.android,
    web: web ?? this.web,
  );
}