FdcErrorIndicatorMarker constructor

const FdcErrorIndicatorMarker({
  1. Key? key,
  2. required String message,
  3. required Color color,
  4. required double size,
  5. Duration waitDuration = const Duration(milliseconds: 350),
})

Implementation

const FdcErrorIndicatorMarker({
  super.key,
  required this.message,
  required this.color,
  required this.size,
  this.waitDuration = const Duration(milliseconds: 350),
});