asset static method

Image asset(
  1. String path, {
  2. BoxFit? fit,
})

asset图片

Implementation

static Image asset(String path, {BoxFit? fit}) {
  return Image(
    image: AssetImage(path),
    fit: fit,
  );
}