AtSyncText constructor

const AtSyncText({
  1. Key? key,
  2. double? value,
  3. Widget? child,
  4. Color? indicatorColor,
  5. TextStyle? textStyle,
})

Implementation

const AtSyncText({
  Key? key,
  this.value,
  this.child,
  this.indicatorColor,
  this.textStyle,
}) : super(key: key);