OrgUnitInfo.fromJson constructor

OrgUnitInfo.fromJson(
  1. Map json_
)

Implementation

OrgUnitInfo.fromJson(core.Map json_)
    : this(
        orgUnitId: json_.containsKey('orgUnitId')
            ? json_['orgUnitId'] as core.String
            : null,
      );