copyWith method

GetPremiumLimit copyWith({
  1. PremiumLimitType? limitType,
})

Implementation

GetPremiumLimit copyWith({
  PremiumLimitType? limitType,
}) =>
    GetPremiumLimit(
      limitType: limitType ?? this.limitType,
    );