UpdateInfo.fromJson constructor

UpdateInfo.fromJson(
  1. Map json_
)

Implementation

UpdateInfo.fromJson(core.Map json_)
  : this(
      targetNodeType: json_['targetNodeType'] as core.String?,
      targetReplicaCount: json_['targetReplicaCount'] as core.int?,
      targetShardCount: json_['targetShardCount'] as core.int?,
    );