large static method

SingleChildModifier large({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. String? tooltip,
  5. Color? foregroundColor,
  6. Color? backgroundColor,
  7. Color? focusColor,
  8. Color? hoverColor,
  9. Color? splashColor,
  10. Object? heroTag,
  11. double? elevation,
  12. double? focusElevation,
  13. double? hoverElevation,
  14. double? highlightElevation,
  15. double? disabledElevation,
  16. required VoidCallback onPressed,
  17. MouseCursor? mouseCursor,
  18. ShapeBorder? shape,
  19. Clip clipBehavior = Clip.none,
  20. FocusNode? focusNode,
  21. bool autofocus = false,
  22. MaterialTapTargetSize? materialTapTargetSize,
  23. bool? enableFeedback,
})

Creates a large circular floating action button.

This constructor overrides the default size constraints of the floating action button.

The clipBehavior and autofocus arguments must not be null. Additionally, elevation, focusElevation, hoverElevation, highlightElevation, and disabledElevation (if specified) must be non-negative.

Implementation

static SingleChildModifier large({
  Key? key,
  Widget? child,
  Key? modifierKey,
  String? tooltip,
  Color? foregroundColor,
  Color? backgroundColor,
  Color? focusColor,
  Color? hoverColor,
  Color? splashColor,
  Object? heroTag,
  double? elevation,
  double? focusElevation,
  double? hoverElevation,
  double? highlightElevation,
  double? disabledElevation,
  required VoidCallback onPressed,
  MouseCursor? mouseCursor,
  ShapeBorder? shape,
  Clip clipBehavior = Clip.none,
  FocusNode? focusNode,
  bool autofocus = false,
  MaterialTapTargetSize? materialTapTargetSize,
  bool? enableFeedback,
}) =>
    _FloatingActionButtonModifierLarge(
      key: key,
      modifierKey: modifierKey,
      materialTapTargetSize: materialTapTargetSize,
      mouseCursor: mouseCursor,
      shape: shape,
      splashColor: splashColor,
      tooltip: tooltip,
      onPressed: onPressed,
      autofocus: autofocus,
      foregroundColor: foregroundColor,
      backgroundColor: backgroundColor,
      focusColor: focusColor,
      hoverColor: hoverColor,
      clipBehavior: clipBehavior,
      disabledElevation: disabledElevation,
      elevation: elevation,
      enableFeedback: enableFeedback,
      focusElevation: focusElevation,
      focusNode: focusNode,
      heroTag: heroTag,
      highlightElevation: highlightElevation,
      hoverElevation: hoverElevation,
      child: child,
    );