Line.fromJson constructor

Line.fromJson(
  1. Map json_
)

Implementation

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