MultiFormatImage.asset constructor Null safety
Implementation
factory MultiFormatImage.asset(
String asset, {
required ImageFormat format,
double? width,
double? height,
BoxFit? fit,
Color? color,
}) {
return MultiFormatImage._(
resource: asset,
format: format,
width: width,
height: height,
fit: fit,
color: color,
resourceType: ResourceType.asset,
);
}