ImageImportResult.success constructor
ImageImportResult.success(
- String sourceRef
Implementation
factory ImageImportResult.success(String sourceRef) {
if (sourceRef.trim().isEmpty) {
throw ArgumentError.value(sourceRef, 'sourceRef', 'must not be blank');
}
return ImageImportResult._(cancelled: false, sourceRef: sourceRef);
}