setDeviceAttributes method
Use this function to send custom device attributes such as app preferences, timezone etc
Implementation
@override
void setDeviceAttributes({required Map<String, dynamic> attributes}) {
return methodChannel
.invokeNativeMethodVoid(NativeMethods.setDeviceAttributes, {
NativeMethodParams.attributes: attributes,
});
}