DetectedBreak.fromJson constructor

DetectedBreak.fromJson(
  1. Map json_
)

Implementation

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