Input$LoyaltySettingsWalletLeaderboardInput constructor

Input$LoyaltySettingsWalletLeaderboardInput({
  1. bool? blur,
  2. bool? active,
  3. bool? overall,
  4. bool? monthly,
  5. bool? weekly,
  6. bool? daily,
})

Implementation

factory Input$LoyaltySettingsWalletLeaderboardInput({
  bool? blur,
  bool? active,
  bool? overall,
  bool? monthly,
  bool? weekly,
  bool? daily,
}) =>
    Input$LoyaltySettingsWalletLeaderboardInput._({
      if (blur != null) r'blur': blur,
      if (active != null) r'active': active,
      if (overall != null) r'overall': overall,
      if (monthly != null) r'monthly': monthly,
      if (weekly != null) r'weekly': weekly,
      if (daily != null) r'daily': daily,
    });