Calendar constructor

Calendar({
  1. String? id,
  2. String? name,
  3. bool? isReadOnly,
  4. bool? isDefault,
  5. int? color,
  6. String? accountName,
  7. String? accountType,
})

Implementation

Calendar(
    {this.id,
    this.name,
    this.isReadOnly,
    this.isDefault,
    this.color,
    this.accountName,
    this.accountType});