ColoredSafeArea constructor

const ColoredSafeArea({
  1. Key? key,
  2. required Widget child,
  3. Color? color,
})

Implementation

const ColoredSafeArea({Key? key, required this.child, this.color})
    : super(key: key);