ListLicenseConfigurationsResponse.fromJson constructor
Implementation
factory ListLicenseConfigurationsResponse.fromJson(
Map<String, dynamic> json) {
return ListLicenseConfigurationsResponse(
licenseConfigurations: (json['LicenseConfigurations'] as List?)
?.whereNotNull()
.map((e) => LicenseConfiguration.fromJson(e as Map<String, dynamic>))
.toList(),
nextToken: json['NextToken'] as String?,
);
}