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