getClearButton method

Widget getClearButton()

Implementation

Widget getClearButton() {
  return GestureDetector(
    onTap: () {
      DebugUtils.debugLogBloc.clearAll();
    },
    child: Container(
      width: 50,
      height: 50,
      decoration: BoxDecoration(
        color: Colors.red,
        borderRadius: BorderRadius.circular(25),
      ),
      child: const Icon(
        Icons.phonelink_erase,
        color: Colors.white,
      ),
    ),
  );
}