copyWith method

WebApiModulesIntegrationsStorefrontLoginResponse copyWith({
  1. String? authToken,
  2. String? fullName,
})

Implementation

WebApiModulesIntegrationsStorefrontLoginResponse copyWith({
  String? authToken,
  String? fullName,
}) {
  return WebApiModulesIntegrationsStorefrontLoginResponse(
    authToken: authToken ?? this.authToken,
    fullName: fullName ?? this.fullName,
  );
}