encodeStringWithCBC method
Implementation
@override
Future<String?> encodeStringWithCBC(String value) async {
final version = await methodChannel.invokeMethod<String>('encodeStringWithCBC', {
"value" : value
});
return version;
}
@override
Future<String?> encodeStringWithCBC(String value) async {
final version = await methodChannel.invokeMethod<String>('encodeStringWithCBC', {
"value" : value
});
return version;
}