oghref_model 1.1.0
oghref_model: ^1.1.0 copied to clipboard
Object standarized definition with parser interface for constructing rich information of given URL among various metadata protocols.
example/main.dart
import 'package:oghref_model/model.dart';
void main() async {
// Get instance of MetaFetch then register parser
final MetaFetch metaFetch = MetaFetch()
// Remark: Please register manually.
..register(const OpenGraphPropertyParser());
/*
Retrive MetaInfo from the first supported rich information protocol
from the first <meta> tag in sequence.
*/
MetaInfo info = await metaFetch.fetchFromHttp(Uri.https("example.com"));
// Print retrived data.
print(info.title);
}