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