copyWith method

LoginUserRequest copyWith({
  1. String? email,
  2. String? companyName,
})

Implementation

LoginUserRequest copyWith({
  String? email,
  String? companyName,
}) {
  return LoginUserRequest(
    email: email ?? this.email,
    companyName: companyName ?? this.companyName,
  );
}