listAssociationKey method

  1. @override
Future<List<String>> listAssociationKey()
override

Implementation

@override
Future<List<String>> listAssociationKey() async {
  return await methodChannel
      .invokeMethod<List<String>?>('listAssociationKey')
      .then<List<String>>((List<String>? value) => value ?? []);
}