Account constructor

Account({
  1. String? number,
  2. List<Property>? properties,
})

Implementation

factory Account({
  String? number,
  List<Property>? properties,
}) = _Account;