send abstract method

Future<void> send(
  1. String screenName, {
  2. List<CustomVar>? customVars,
})

Tracks a screen view with the given name. You should use this method to track every screen viewed by a user.

You can also pass a list of CustomVar to track custom values specific to this screen.

See also Screen views in developer documentation

Implementation

Future<void> send(String screenName, {List<CustomVar>? customVars});