marksFromJson static method

List<RichTextLeafMark> marksFromJson(
  1. JSONMap json
)

Implementation

static List<RichTextLeafMark> marksFromJson(JSONMap json) =>
    List<JSONMap>.from(json["marks"] ?? []).map(RichTextLeafMark.fromJson).toList();