copyWith method

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

Implementation

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