EmptyError constructor

EmptyError({
  1. required String message,
})

Creates a new instance of EmptyError with the given message.

The message parameter is required and should not be null.

Implementation

EmptyError({required this.message});