unsetIsRunningTile property

Widget get unsetIsRunningTile

Implementation

Widget get unsetIsRunningTile => MyCardListTile1(
      icon: Icons.remove_circle_outline,
      text: 'unset isRunning',
      onTap: () async {
        SharedPreferences prefs = await SharedPreferences.getInstance();
        prefs.setBool(sync_in_progress_str, false);
      },
    );