actions property

  1. @override
List<MyListTileData> actions
final

a List which all the actions that could be made for a specific DropDown IMPORTANT: the first element marks the main/default action

Implementation

@override
final List<MyListTileData> actions = [
  MyListTileData(
    title: _nextViewTitle,
    icon: Icons.category,
  ),
  MyListTileData(
    title: "Fotos",
  ),

  ///see #24
  MyListTileData(
    title: "Infos",
  ),
  MyListTileData(
    title: "Docs",
  ),
  MyListTileData(
    title: _nextViewTitle,
  ),
];