InlineTextBox.fromJson constructor
Implementation
factory InlineTextBox.fromJson(Map<String, dynamic> json) {
return InlineTextBox(
boundingBox:
dom.Rect.fromJson(json['boundingBox'] as Map<String, dynamic>),
startCharacterIndex: json['startCharacterIndex'] as int,
numCharacters: json['numCharacters'] as int,
);
}