copyWith method

SendAuthenticationFirebaseSms copyWith({
  1. String? token,
})

Implementation

SendAuthenticationFirebaseSms copyWith({
  String? token,
}) =>
    SendAuthenticationFirebaseSms(
      token: token ?? this.token,
    );