hasView method
Determines if the given view exists.
Implementation
@override
Future<bool> hasView(String view, {String? schema}) async {
return snapshot.views.any(
(v) => _equalsOwner(v.schema, schema) && _equals(v.name, view),
);
}
Determines if the given view exists.
@override
Future<bool> hasView(String view, {String? schema}) async {
return snapshot.views.any(
(v) => _equalsOwner(v.schema, schema) && _equals(v.name, view),
);
}