SystemInfo.fromJson constructor

SystemInfo.fromJson(
  1. String source
)

fromJson returns a SystemInfo object from a json object.

Implementation

factory SystemInfo.fromJson(String source) =>
    SystemInfo.fromMap(json.decode(source));