getUserCertificates method

  1. @override
Future<Map<String, Uint8List>?> getUserCertificates()
override

Implementation

@override
Future<Map<String, Uint8List>?> getUserCertificates() async {
  final certs = await methodChannel.invokeMethod<Map>('getUserCertificates');
  return certs?.cast<String, Uint8List>();
}