Profile constructor

Profile({
  1. String? handle,
  2. bool? canReceive,
  3. List<ProfileCurrency>? currencies,
  4. String? avatarUrl,
  5. String? description,
})

Implementation

Profile({
  this.handle,
  this.canReceive,
  this.currencies,
  this.avatarUrl,
  this.description,
});