VmwareStorageConfig.fromJson constructor

VmwareStorageConfig.fromJson(
  1. Map json_
)

Implementation

VmwareStorageConfig.fromJson(core.Map json_)
    : this(
        vsphereCsiDisabled: json_.containsKey('vsphereCsiDisabled')
            ? json_['vsphereCsiDisabled'] as core.bool
            : null,
      );