NotSignedInError constructor

NotSignedInError({
  1. String message = "NOT_SIGNED_IN_ERROR",
  2. String? code,
})

Implementation

NotSignedInError({String message = "NOT_SIGNED_IN_ERROR", String? code})
    : super(message: message, code: code);