listScopedImageNames method
Implementation
Future<List<String>> listScopedImageNames(Data? data, {Data? caller}) async {
final scope = _scopeForData(data, caller: caller).trim();
if (scope.isEmpty) return const [];
try {
return await OP.listScopedImageNames(scope);
} catch (_) {
return const [];
}
}