copyWith method

AuthenticationCodeTypeFirebaseIos copyWith({
  1. String? receipt,
  2. int? pushTimeout,
  3. int? length,
})

Implementation

AuthenticationCodeTypeFirebaseIos copyWith({
  String? receipt,
  int? pushTimeout,
  int? length,
}) => AuthenticationCodeTypeFirebaseIos(
  receipt: receipt ?? this.receipt,
  pushTimeout: pushTimeout ?? this.pushTimeout,
  length: length ?? this.length,
);