endMoment method

  1. @override
void endMoment(
  1. String name, {
  2. String? identifier,
  3. Map<String, String>? properties,
})
override

Signals the end of a moment with the specified name and identifier.

Implementation

@override
void endMoment(
  String name, {
  String? identifier,
  Map<String, String>? properties,
}) {
  _runCatching(
    'endMoment',
    () => _platform.endMoment(name, identifier, properties),
  );
}