SmoothLargeButtonWithIcon constructor Null safety

const SmoothLargeButtonWithIcon(
  1. {required String text,
  2. required dynamic icon,
  3. required dynamic onPressed,
  4. dynamic padding}
)

Implementation

const SmoothLargeButtonWithIcon({
  required this.text,
  required this.icon,
  required this.onPressed,
  this.padding,
});