throwError function
Helper to through flutter errors
Implementation
void throwError(String message, {Element? element}) {
throw InvalidGenerationSourceError(
message,
element: element,
);
}
Helper to through flutter errors
void throwError(String message, {Element? element}) {
throw InvalidGenerationSourceError(
message,
element: element,
);
}