SetName constructor

SetName({
  1. String? extra,
  2. int? client_id,
  3. string? first_name,
  4. string? last_name,
})

Implementation

SetName({
  super.extra,
  super.client_id,
  this.first_name,
  this.last_name,
});