copyWith method

GetPremiumStickers copyWith({
  1. int? limit,
})

Implementation

GetPremiumStickers copyWith({
  int? limit,
}) =>
    GetPremiumStickers(
      limit: limit ?? this.limit,
    );