BaseSnackyWidget constructor

const BaseSnackyWidget({
  1. required CancelableSnacky cancelableSnacky,
  2. required SnackyController snackyController,
  3. required Widget child,
  4. BorderRadius borderRadius = BorderRadius.zero,
  5. EdgeInsets margin = const EdgeInsets.all(16),
  6. bool disableInkWell = false,
  7. Key? key,
})

Implementation

const BaseSnackyWidget({
  required this.cancelableSnacky,
  required this.snackyController,
  required this.child,
  this.borderRadius = BorderRadius.zero,
  this.margin = const EdgeInsets.all(16),
  this.disableInkWell = false,
  super.key,
});