VmwareVsphereTag.fromJson constructor

VmwareVsphereTag.fromJson(
  1. Map json_
)

Implementation

VmwareVsphereTag.fromJson(core.Map json_)
    : this(
        category: json_.containsKey('category')
            ? json_['category'] as core.String
            : null,
        tag: json_.containsKey('tag') ? json_['tag'] as core.String : null,
      );