DetectedBreak.fromJson constructor

DetectedBreak.fromJson(
  1. Map json_
)

Implementation

DetectedBreak.fromJson(core.Map json_)
    : this(
        isPrefix: json_.containsKey('isPrefix')
            ? json_['isPrefix'] as core.bool
            : null,
        type: json_.containsKey('type') ? json_['type'] as core.String : null,
      );