SyncEventInit constructor

SyncEventInit({
  1. required String tag,
  2. bool? lastChance,
})

Implementation

factory SyncEventInit({required String tag, bool? lastChance}) =>
    SyncEventInit._(tag: tag, lastChance: lastChance ?? false);