HotTablet.fromJson constructor

HotTablet.fromJson(
  1. Map json_
)

Implementation

HotTablet.fromJson(core.Map json_)
  : this(
      endKey: json_['endKey'] as core.String?,
      endTime: json_['endTime'] as core.String?,
      name: json_['name'] as core.String?,
      nodeCpuUsagePercent:
          (json_['nodeCpuUsagePercent'] as core.num?)?.toDouble(),
      startKey: json_['startKey'] as core.String?,
      startTime: json_['startTime'] as core.String?,
      tableName: json_['tableName'] as core.String?,
    );