rpcStatus constructor

const rpcStatus({
  1. num? code,
  2. String? message,
  3. List<protobufAny>? details,
})

Implementation

const rpcStatus({
  this.code,
  this.message,
  this.details,
});