LoaderPage constructor

const LoaderPage({
  1. Key? key,
  2. String message = '',
  3. Color color = const Color(0xFFFB8C00),
  4. Widget? child,
})

Implementation

const LoaderPage({
  Key? key,
  this.message = '',
  this.color = const Color(0xFFFB8C00),
  this.child,
}) : super(key: key);