FlutterEasyLoading constructor

const FlutterEasyLoading({
  1. Key? key,
  2. required Widget? child,
})

Implementation

const FlutterEasyLoading({
  Key? key,
  required this.child,
})  : assert(child != null),
      super(key: key);