emptyView static method

Widget emptyView({
  1. double? width,
  2. double? height,
})

Implementation

static Widget emptyView( {double? width, double? height}){

  height ??= 0;
  width ??= 0;

  return Placeholder(strokeWidth: 0, color: Colors.transparent , fallbackHeight: height, fallbackWidth: width );
}