Line.fromJson constructor

Line.fromJson(
  1. Map json_
)

Implementation

Line.fromJson(core.Map json_)
  : this(
      content: json_['content'] as core.String?,
      lineNumber: json_['lineNumber'] as core.int?,
    );