Rinf class

Contains basic functionalities of this framework.

Constructors

Rinf()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

ensureFinalized() Future<void>
Ensure that all Rust tasks are terminated by calling this function before closing the Flutter app. Doing so can prevent potential memory errors that may occur when Rust attempts to send data after the Dart VM has been turned off. Please note that on the web, this function does not have any effect, as tasks are managed by the JavaScript runtime, not Rust.
ensureInitialized() Future<void>
Makes sure that the Rust side is ready. Don't forget to call this function in the main function of Dart.