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,
      );