HotRestartResponse constructor

HotRestartResponse({
  1. required String id,
  2. required bool success,
  3. String? errorMessage,
})

Implementation

HotRestartResponse({
  required this.id,
  required this.success,
  this.errorMessage,
});