FileIndexableText.fromJson constructor

FileIndexableText.fromJson(
  1. Map json_
)

Implementation

FileIndexableText.fromJson(core.Map json_)
    : this(
        text: json_.containsKey('text') ? json_['text'] as core.String : null,
      );