EngineCallResult constructor

const EngineCallResult({
  1. required int code,
  2. String? message,
  3. String data = '',
})

Implementation

const EngineCallResult({
  required this.code,
  this.message,
  this.data = '',
});