get_title method

Future<String?> get_title()

Implementation

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