leaveThread static method
Implementation
static Widget leaveThread(
{double width = 24, double height = 24, Color? color}) {
return Image(
color: color,
gaplessPlayback: true,
width: width,
height: height,
image: AssetImage('assets/images/leave_thread.png', package: packageName),
fit: BoxFit.fill,
);
}