init method

Future init(
  1. String key
)

初始化

Implementation

Future init(String key) async {
  final keyFile = await rootBundle.loadString(key);
  k = RSAKeyParser().parse(keyFile);
}