MediumOutlinedButton constructor

const MediumOutlinedButton({
  1. Key? key,
  2. required String title,
  3. VoidCallback? onPressed,
  4. bool isEnabled = true,
  5. Widget? icon,
})

Implementation

const MediumOutlinedButton({
  final Key? key,
  required final String title,
  final VoidCallback? onPressed,
  final bool isEnabled = true,
  final Widget? icon,
})  : _isEnabled = isEnabled,
      _key = key,
      _title = title,
      _onPressed = onPressed,
      _icon = icon;