BareMetalLvpShareConfig.fromJson constructor

BareMetalLvpShareConfig.fromJson(
  1. Map json_
)

Implementation

BareMetalLvpShareConfig.fromJson(core.Map json_)
    : this(
        lvpConfig: json_.containsKey('lvpConfig')
            ? BareMetalLvpConfig.fromJson(
                json_['lvpConfig'] as core.Map<core.String, core.dynamic>)
            : null,
        sharedPathPvCount: json_.containsKey('sharedPathPvCount')
            ? json_['sharedPathPvCount'] as core.int
            : null,
      );