screen method
void
screen({})
override
Track screen events to record the screens a user visits
Implementation
@override
void screen(
{required String title, Map<String, dynamic> properties = const {}}) {
return methodChannel.invokeNativeMethodVoid(NativeMethods.screen, {
NativeMethodParams.title: title,
NativeMethodParams.properties: properties,
});
}