LicenseResourceRequirements.fromJson constructor

LicenseResourceRequirements.fromJson(
  1. Map json_
)

Implementation

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