GoogleRpcStatus constructor

GoogleRpcStatus({
  1. int? code,
  2. List<Map<String, Object>>? details,
  3. String? message,
})

Implementation

GoogleRpcStatus({
  this.code,
  this.details,
  this.message,
});