build method

  1. @override
Widget build(
  1. BuildContext context
)
override

Creating a body.

context: Build context.

Implementation

@override
Widget build(BuildContext context) {
  return applySafeArea ? SafeArea(child: _body(context)) : _body(context);
}