shimmer property

Widget get shimmer

Implementation

Widget get shimmer => Stack(
      children: [
        this,
        Positioned.fill(
            child: Container(
          color: Colors.black,
        )),
      ],
    );