noDisturb static method

Widget noDisturb({
  1. double width = 20,
  2. double height = 20,
  3. Color? color,
})

Implementation

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