Body constructor

const Body(
  1. {Key? key,
  2. required Widget child,
  3. bool showLoader = true}
)

Implementation

const Body({Key? key, required this.child, this.showLoader = true})
    : super(key: key);