supports abstract method
Checks if this handler supports the given source type
Example:
final handler = NetworkSourceHandler(...);
handler.supports(ModelSource.network('https://...')); // true
handler.supports(ModelSource.asset('assets/...')); // false
Implementation
bool supports(ModelSource source);