SystraceSetup.fromJson constructor

SystraceSetup.fromJson(
  1. Map _json
)

Implementation

SystraceSetup.fromJson(core.Map _json)
    : this(
        durationSeconds: _json.containsKey('durationSeconds')
            ? _json['durationSeconds'] as core.int
            : null,
      );