DescribeLDAPSSettingsResult.fromJson constructor

DescribeLDAPSSettingsResult.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory DescribeLDAPSSettingsResult.fromJson(Map<String, dynamic> json) {
  return DescribeLDAPSSettingsResult(
    lDAPSSettingsInfo: (json['LDAPSSettingsInfo'] as List?)
        ?.whereNotNull()
        .map((e) => LDAPSSettingInfo.fromJson(e as Map<String, dynamic>))
        .toList(),
    nextToken: json['NextToken'] as String?,
  );
}