EntityUserLinkPermissions.fromJson constructor

EntityUserLinkPermissions.fromJson(
  1. Map json_
)

Implementation

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