An abstract library for building rich information link in Flutter widgets.
It only just define dependencies in pubspec.yaml
and both builder and models are bundled already.
dependencies:
oghref_builder: # Version cosntraint
Then, just import it:
import 'package:oghref_builder/oghref_builder.dart';
However, if custom parser is required, oghref_model
must be declared at the same time:
dependencies:
oghref_builder: # Version cosntraint
oghref_model: # Version cosntraint
And import buffer_parser
library along with oghref_builder
:
import 'package:oghref_builder/oghref_builder.dart';
import 'package:oghref_model/buffer_parser.dart';
MIT