end method

Implementation

Future<AppdynamicsSessionFrame> end() async {
  await this._channel.invokeMethod<void>(
    'endSessionFrame',
    <String, dynamic>{'sessionId': this.sessionId},
  );

  return this;
}