ListUsageForLicenseConfigurationResponse.fromJson constructor

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

Implementation

factory ListUsageForLicenseConfigurationResponse.fromJson(
    Map<String, dynamic> json) {
  return ListUsageForLicenseConfigurationResponse(
    licenseConfigurationUsageList:
        (json['LicenseConfigurationUsageList'] as List?)
            ?.whereNotNull()
            .map((e) =>
                LicenseConfigurationUsage.fromJson(e as Map<String, dynamic>))
            .toList(),
    nextToken: json['NextToken'] as String?,
  );
}