file static method

Image file(
  1. String path
)

沙盒图片

Implementation

static Image file(String path) {
  return Image(
    image: FileImage(File(path)),
  );
}