CreateLicenseConfigurationResponse.fromJson constructor

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

Implementation

factory CreateLicenseConfigurationResponse.fromJson(
    Map<String, dynamic> json) {
  return CreateLicenseConfigurationResponse(
    licenseConfigurationArn: json['LicenseConfigurationArn'] as String?,
  );
}