removeJsonLd method

void removeJsonLd({
  1. String? id,
  2. String? type,
})

Remove JSON-LD structured data by id or @type.

Implementation

void removeJsonLd({String? id, String? type}) {
  _platform.removeJsonLd(id: id, type: type);
}