copyWith method
ProductStatusBreakdown
copyWith({
- double? success,
- double? errorPlaid,
- double? errorInstitution,
- ProductStatusBreakdownRefreshInterval? refreshInterval,
Implementation
ProductStatusBreakdown copyWith(
{double? success,
double? errorPlaid,
double? errorInstitution,
enums.ProductStatusBreakdownRefreshInterval? refreshInterval}) {
return ProductStatusBreakdown(
success: success ?? this.success,
errorPlaid: errorPlaid ?? this.errorPlaid,
errorInstitution: errorInstitution ?? this.errorInstitution,
refreshInterval: refreshInterval ?? this.refreshInterval);
}