throwUnimplemented method
A utility for throwing unimplemented in your startAsync method before you have implemented it.
Provides a nice error message
Implementation
@override
Never throwUnimplemented() {
throw AFException("The query $runtimeType is not implemented in debug/production, fill in startAsync");
}