TruncateLogContext.fromJson constructor

TruncateLogContext.fromJson(
  1. Map _json
)

Implementation

TruncateLogContext.fromJson(core.Map _json)
    : this(
        kind: _json.containsKey('kind') ? _json['kind'] as core.String : null,
        logType: _json.containsKey('logType')
            ? _json['logType'] as core.String
            : null,
      );