copyWith method

GetRecentStickers copyWith({
  1. bool? isAttached,
})

Implementation

GetRecentStickers copyWith({
  bool? isAttached,
}) =>
    GetRecentStickers(
      isAttached: isAttached ?? this.isAttached,
    );