copyWith method

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

Implementation

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