PrefixList.fromJson constructor

PrefixList.fromJson(
  1. Map json_
)

Implementation

PrefixList.fromJson(core.Map json_)
  : this(
      includedObjectPrefixes: (json_['includedObjectPrefixes'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );