FastExchangeHomePage constructor

FastExchangeHomePage({
  1. Key? key,
  2. required List<Widget> children,
  3. FastExchangeAppBarGraphtype graphType = FastExchangeAppBarGraphtype.line,
  4. double appBarExpandedHeight = kFastExpandedHeight,
  5. LinearGradient? appBarBackgroundLinearGradient,
  6. EdgeInsetsGeometry? contentPadding,
  7. Color? appBarBackgroundColor,
  8. Widget? floatingActionButton,
  9. Widget? appBarDecoration,
  10. String? subtitleText,
  11. String? titleText,
  12. List<Widget>? actions,
  13. Widget? leading,
})

Implementation

FastExchangeHomePage({
  Key? key,
  required this.children,
  this.graphType = FastExchangeAppBarGraphtype.line,
  this.appBarExpandedHeight = kFastExpandedHeight,
  this.appBarBackgroundLinearGradient,
  this.contentPadding,
  this.appBarBackgroundColor,
  this.floatingActionButton,
  this.appBarDecoration,
  this.subtitleText,
  this.titleText,
  this.actions,
  this.leading,
})  : assert(
        appBarExpandedHeight >= kFastExpandedHeight ? true : false,
      ),
      super(key: key);