AtSyncSnackBar constructor

AtSyncSnackBar(
  1. {required dynamic context,
  2. AtSyncStyle syncStyle = AtSyncStyle.material,
  3. Color? indicatorColor,
  4. Color? backgroundColor,
  5. TextStyle? textStyle}
)

Implementation

AtSyncSnackBar({
  required context,
  this.syncStyle = AtSyncStyle.material,
  this.indicatorColor,
  this.backgroundColor,
  this.textStyle,
}) {
  _context = context;
}