OrganizationOwner.fromJson constructor

OrganizationOwner.fromJson(
  1. Map json_
)

Implementation

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