NodeInfo.fromJson constructor

NodeInfo.fromJson(
  1. Map json_
)

Implementation

NodeInfo.fromJson(core.Map json_)
    : this(
        id: json_['id'] as core.String?,
        zone: json_['zone'] as core.String?,
      );