TextMark.fromJson constructor

TextMark.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory TextMark.fromJson(final Map<String, dynamic> json) {
  return TextMark(
    json['offsetMillis'],
    Coordinates.fromJson(json['coordinates']),
    json['report'],
  );
}