CocobaseErrorWidget constructor

const CocobaseErrorWidget({
  1. Key? key,
  2. required CocobaseError error,
  3. VoidCallback? onRetry,
  4. String? retryLabel,
})

Implementation

const CocobaseErrorWidget({
  super.key,
  required this.error,
  this.onRetry,
  this.retryLabel,
});