MnnRuntimeSnapshot constructor

const MnnRuntimeSnapshot({
  1. required int revision,
  2. required String engineState,
  3. required String modelState,
  4. required String serverState,
  5. required String generationState,
  6. MnnModelInfo? activeModel,
  7. MnnServerInfo? server,
  8. String? lastError,
})

Implementation

const MnnRuntimeSnapshot({
  required this.revision,
  required this.engineState,
  required this.modelState,
  required this.serverState,
  required this.generationState,
  this.activeModel,
  this.server,
  this.lastError,
});