extract_structured_data method

Future<Online> extract_structured_data(
  1. String key, {
  2. List<String>? types = null,
})

Implementation

Future<Online> extract_structured_data(
  String key, {
  List<String>? types = null,
}) async {
  var Online = await this;
  return Online.extract_structured_data(
    key,
    types: types,
  );
}