netWork static method

Image netWork(
  1. String path
)

网络图片

Implementation

static Image netWork(String path) {
  return Image(
    image: NetworkImage(path),
  );
}