MachineTypeAccelerators.fromJson constructor

MachineTypeAccelerators.fromJson(
  1. Map json_
)

Implementation

MachineTypeAccelerators.fromJson(core.Map json_)
    : this(
        guestAcceleratorCount: json_.containsKey('guestAcceleratorCount')
            ? json_['guestAcceleratorCount'] as core.int
            : null,
        guestAcceleratorType: json_.containsKey('guestAcceleratorType')
            ? json_['guestAcceleratorType'] as core.String
            : null,
      );