WebpropertyPermissions.fromJson constructor

WebpropertyPermissions.fromJson(
  1. Map json_
)

Implementation

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