getClearButton method
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,
),
),
);
}