RawDraftInlineStyleRange.fromJson constructor

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

Implementation

factory RawDraftInlineStyleRange.fromJson(Map<String, dynamic> json) =>
    RawDraftInlineStyleRange(
      length: json["length"].toDouble(),
      offset: json["offset"].toDouble(),
      style: json["style"],
    );