loading static method

Widget loading({
  1. double width = 280.0,
  2. double height = 280.0,
})

Implementation

static Widget loading({
  double width = 280.0,
  double height = 280.0,
}) {
  return Center(
    child: MLottieImage(
      name: Jsons.loading,
      width: width,
      height: height,
    ),
  );
}