HotReloadResponse constructor

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

Implementation

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