copyWith method

  1. @override
AuthenticationCodeTypeMissedCall copyWith({
  1. String? phoneNumberPrefix,
  2. int? length,
})
override

Implementation

@override
AuthenticationCodeTypeMissedCall copyWith({
  String? phoneNumberPrefix,
  int? length,
}) => AuthenticationCodeTypeMissedCall(
  phoneNumberPrefix: phoneNumberPrefix ?? this.phoneNumberPrefix,
  length: length ?? this.length,
);