copyWith method

ProductStatusBreakdown copyWith({
  1. double? success,
  2. double? errorPlaid,
  3. double? errorInstitution,
  4. 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);
}