copyWith method

GetGrossingWebAppBots copyWith({
  1. String? offset,
  2. int? limit,
})

Implementation

GetGrossingWebAppBots copyWith({String? offset, int? limit}) =>
    GetGrossingWebAppBots(
      offset: offset ?? this.offset,
      limit: limit ?? this.limit,
    );