ToastMsgMain constructor

const ToastMsgMain({
  1. Key? key,
  2. required Widget child,
  3. double positionValue = 0,
  4. EdgeInsets margin = EdgeInsets.zero,
  5. BorderRadius? borderRadius,
})

Implementation

const ToastMsgMain({
  super.key,
  required this.child,
  this.positionValue = 0,
  this.margin = EdgeInsets.zero,
  this.borderRadius,
  });