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