init method

BiometricManager init([
  1. void objectInitialized()?
])

Bot API 7.2+ A method that initializes the BiometricManager object. It should be called before the object's first use. If an optional callback parameter was passed, the callback function will be called when the object is initialized.

Implementation

BiometricManager init([void Function()? objectInitialized]) {
   _bm.init(objectInitialized?.toJS);
   return this;
}