applyWhenPossible method

  1. @override
Interactive applyWhenPossible({
  1. Item? item,
  2. Slot? slot,
  3. List<Widget>? actions,
  4. Score? count,
})
override

Implementation

@override
Interactive applyWhenPossible({
  Item? item,
  Slot? slot,
  List<Widget>? actions,
  Score? count,
}) =>
    Interactive(
      item ?? this.item,
      slot: slot ?? this.slot,
      actions: actions ?? this.actions,
      countScore: count ?? countScore,
    );