getEntity method

String? getEntity(
  1. String? type
)

Implementation

String? getEntity(String? type) {
  var ett = entityOf(type);
  if (ett != null) {
    return (text ?? caption)!.substring(ett.offset, ett.offset + ett.length);
  } else {
    return null;
  }
}