copyWith method

GetUserProfileAudios copyWith({
  1. int? userId,
  2. int? offset,
  3. int? limit,
})

Implementation

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