PhoenixEmptyPage constructor

const PhoenixEmptyPage({
  1. Key? key,
  2. required String title,
  3. required Widget pageImage,
  4. TextStyle textStyle = const TextStyle(fontSize: 16.0, color: Color(0xff212124)),
})

Implementation

const PhoenixEmptyPage({
  Key? key,
  required this.title,
  required this.pageImage,
  this.textStyle = const TextStyle(
    fontSize: 16.0,
    color: Color(0xff212124),
  ),
}) : super(key: key);