funle_fb2 1.0.0+2 funle_fb2: ^1.0.0+2 copied to clipboard
This package provides functionality to parse FB2 files and extract information. It is designed to be easy to use and integrate into Flutter applications.
import 'package:funle_fb2/funle_fb2.dart';
void main() async {
FB2Parser parser = FB2Parser('example.fb2');
await parser.parse();
print(parser.description.title);
print(parser.description.authors![0].firstName);
}