getAttributes method

Future<Map<String, String>?> getAttributes(
  1. List<String> keys
)

Implementation

Future<Map<String, String>?> getAttributes(List<String> keys) async {
  Map<String, dynamic> arguments = {
    "keys": jsonEncode(keys),
  };
  Map<String, String>? results = await methodChannel.invokeMapMethod('getAttributes', arguments);
  return results;
}