h3_common 0.6.1 h3_common: ^0.6.1 copied to clipboard
The package provides Dart version of the H3 Core library, a hexagon-based geographic grid system
This library should only be used if you're building some library for H3.
In this case you can use abstract H3
class:
import 'package:h3_common/h3_common.dart';
class SomeH3Implementation implements H3 {
...
}
extension SomeH3Extension on H3 {
...
}