RoboScriptExecution.fromJson constructor

RoboScriptExecution.fromJson(
  1. Map _json
)

Implementation

RoboScriptExecution.fromJson(core.Map _json)
    : this(
        successfulActions: _json.containsKey('successfulActions')
            ? _json['successfulActions'] as core.int
            : null,
        totalActions: _json.containsKey('totalActions')
            ? _json['totalActions'] as core.int
            : null,
      );