init static method

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

Implementation

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