ServiceExtensionResponse constructor

ServiceExtensionResponse({
  1. required String id,
  2. required bool success,
  3. Map<String, dynamic>? result,
  4. int? errorCode,
  5. String? errorMessage,
})

Implementation

ServiceExtensionResponse({
  required this.id,
  required this.success,
  this.result,
  this.errorCode,
  this.errorMessage,
});