copyWith method

Implementation

WebApiModulesIntegrationsStorefrontLoginRequest copyWith({
  String? email,
  String? password,
}) {
  return WebApiModulesIntegrationsStorefrontLoginRequest(
    email: email ?? this.email,
    password: password ?? this.password,
  );
}