getAllDeviceIdentifiers method
Implementation
@override
Future<DeviceIdentifierInfo> getAllDeviceIdentifiers() async {
final values = await methodChannel.invokeMapMethod<String, Object?>(
'getAllDeviceIdentifiers',
);
return DeviceIdentifierInfo.fromMap(values);
}