UserUndelete.fromJson constructor

UserUndelete.fromJson(
  1. Map json_
)

Implementation

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