toMapOrBool static method

dynamic toMapOrBool(
  1. PageViews pageViews
)

Implementation

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