onFailedResponse method

dynamic onFailedResponse({
  1. required String error,
})

English: This method is called to display the custom or default failed message or exception.

हिन्दि: इस विधि को कस्टम या डिफ़ॉल्ट विफल संदेश या अपवाद प्रदर्शित करने के लिए कहा जाता है।

नेपाली: यो विधि अनुकूलन वा पूर्वनिर्धारित असफल सन्देश वा अपवाद प्रदर्शन गर्नको प्रयोग गरिन्छ।

Implementation

onFailedResponse({required String error}) {
  emit(VelocityFailedState<T>(state.data, !state.changed, error));
}