init static method

Future<bool> init(
  1. String aesKey,
  2. String aesIv,
  3. int maxFileLen
)

Implementation

static Future<bool> init(
    String aesKey, String aesIv, int maxFileLen) async {
  final bool result = await _channel.invokeMethod('init',{'aesKey': aesKey, 'aesIv': aesIv, 'maxFileLen': maxFileLen});
  return result;
}