Image.asset constructor
Image.asset({})
Implementation
factory Image.asset({
/// Image path stored in the web directory
required String path,
Unit? width,
Unit? height,
String? alt,
Map<String, String>? attributes,
}) {
return Image(src: path);
}