Account constructor
Account({
- String? id,
- required AccountIdentity identity,
Implementation
Account({String? id, required this.identity}) {
this.id = id ?? const Uuid().v1;
}