commitPayload property

Future<Map<String, dynamic>> get commitPayload

Registration payload returned by __extCommit. Fails when start has not completed.

Implementation

Future<Map<String, dynamic>> get commitPayload async {
  final commit = _commit;
  if (commit == null) {
    throw StateError('engine not started');
  }
  return commit;
}