native_toolchain_cmake 0.0.2
native_toolchain_cmake: ^0.0.2 copied to clipboard
A library to invoke CMake for Dart Native Assets.
example/lib/example.dart
import 'src/g/add.g.dart';
int calculate(int a, int b, {int times = 1}) {
final result = math_add(a, b);
return result * times;
}