h3_common_plus 1.0.0+v4.2.1
h3_common_plus: ^1.0.0+v4.2.1 copied to clipboard
This package provides the base abstract class for all other H3 packages in the _plus ecosystem.
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 {
...
}