one static method

Widget one(
  1. Images imgs,
  2. double width,
  3. double height
)

Implementation

static Widget one(Images imgs, double width, double height) {
  return SizedBox(
      width: width,
      height: height,
      child: imageDecoration(EmbedImage(images: imgs)));
}