DetectedBreak.fromJson constructor
DetectedBreak.fromJson(
- 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,
);