newCounter method

Future<Counter> newCounter({
  1. dynamic hint,
})
override

Implementation

Future<Counter> newCounter({dynamic hint}) {
  return _platform.executeNormal(FlutterRustBridgeTask(
    callFfi: (port_) => _platform.inner.wire_new_counter(port_),
    parseSuccessData: _wire2api_Counter,
    constMeta: kNewCounterConstMeta,
    argValues: [],
    hint: hint,
  ));
}