toMapOrBool static method
Implementation
static dynamic toMapOrBool(PageViews pageViews) {
return switch (pageViews) {
PageViewsOptions() => pageViews.toMap(),
PageViewsEnabled() => true,
PageViewsDisabled() => false,
Type() => throw UnimplementedError(),
};
}