get_text method

Future<String?> get_text()

Implementation

Future<String?> get_text() async {
  if (this == null) return null;
  return await this!.propertyValue('text');
}