LicenseResourceRequirements.fromJson constructor

LicenseResourceRequirements.fromJson(
  1. Map json_
)

Implementation

LicenseResourceRequirements.fromJson(core.Map json_)
  : this(
      minGuestCpuCount: json_['minGuestCpuCount'] as core.int?,
      minMemoryMb: json_['minMemoryMb'] as core.int?,
    );