$Shared04.fromJson constructor

$Shared04.fromJson(
  1. Map json_
)

Implementation

$Shared04.fromJson(core.Map json_)
    : this(
        bootDiskSizeGb: json_.containsKey('bootDiskSizeGb')
            ? json_['bootDiskSizeGb'] as core.int
            : null,
        bootDiskType: json_.containsKey('bootDiskType')
            ? json_['bootDiskType'] as core.String
            : null,
      );