Ok constructor

const Ok({
  1. dynamic extra,
  2. int? clientId,
})

An object of this type is returned on a successful function call for certain functions

Implementation

const Ok({
  this.extra,
  this.clientId,
});