AtSyncButton constructor

const AtSyncButton({
  1. Key? key,
  2. Widget? child,
  3. bool isLoading = false,
  4. VoidCallback? onPressed,
  5. Color? syncIndicatorColor,
})

Implementation

const AtSyncButton({
  Key? key,
  this.child,
  this.isLoading = false,
  this.onPressed,
  this.syncIndicatorColor,
}) : super(key: key);