setCompleted method
- bool value = true,
override
Sets whether the introduction is completed or not.
The value
parameter specifies whether the introduction is completed.
By default, it is set to true
.
Implementation
@override
Future<void> setCompleted({bool value = true}) async {
await _init();
await _writeKeyValue(key, value);
}