asset static method

Image asset(
  1. String path
)

asset图片

Implementation

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