copyWith method

CheckAuthenticationCode copyWith({
  1. String? code,
})

Implementation

CheckAuthenticationCode copyWith({
  String? code,
}) =>
    CheckAuthenticationCode(
      code: code ?? this.code,
    );