Client.fromMap constructor

Client.fromMap(
  1. JsonMap map
)

Implementation

factory Client.fromMap(JsonMap map) => Client(
    locale: map['locale'],
    hostname: map['hostname'],
    os: map['os'],
    osVersion: map['os_version'],
    dartVersion: map['dart']['version'],
    numberOfProcessors: map['number_of_processors']);