SyncStatus.create constructor

SyncStatus.create({
  1. required String accountId,
  2. required String type,
  3. required String subjectId,
  4. required String checkSum,
})

Implementation

SyncStatus.create(
    {required this.accountId,
    required this.type,
    required this.subjectId,
    required this.checkSum})
    : this.id = null;