ListLicenseConfigurationsResponse.fromJson constructor

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

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?,
  );
}