BatchCreatePermissionsResponse.fromJson constructor
      
      BatchCreatePermissionsResponse.fromJson(
    
    
- Map json_
Implementation
BatchCreatePermissionsResponse.fromJson(core.Map json_)
  : this(
      permissions:
          (json_['permissions'] as core.List?)
              ?.map(
                (value) => Permission.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
    );