copyWith method

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

Implementation

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