Account constructor

Account({
  1. String? name,
  2. String? type,
})

Implementation

Account({
  this.name,
  this.type,
});