actions property

  1. @override
List<Widget> get actions
override

Implementation

@override
List<Widget> get actions => [
      ToolbarButton(
        child: const Icon(Icons.replay_outlined),
        onPressed: () => value++,
      )
    ];