SimInfo.fromJson constructor

SimInfo.fromJson(
  1. String source
)

fromJson returns a instance of SimInfo from a json string.

Implementation

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