add method

adds a page mapping to list of page mappings

Implementation

PagePluginBuilder add(String type, VoyagerPageBuilder builder) {
  assert(!VoyagerUtils.isNullOrBlank(type),
      "Widget type might not be null or blank");
  assert(_builders[type] == null, "Type $type is already registered.");
  _builders[type] = builder;
  return this;
}