maybeWhen<TResult extends Object?> method
- @optionalTypeArgs
A variant of when
that fallback to an orElse
callback.
It is equivalent to doing:
switch (sealedClass) {
case Subclass(:final field):
return ...;
case _:
return orElse();
}
Implementation
@optionalTypeArgs TResult maybeWhen<TResult extends Object?>(TResult Function( String $type, int? totalReports, int? reportedCount, int? escalatedCount, int? appealedCount, int? subjectCount, int? pendingCount, int? processedCount, int? takendownCount, Map<String, dynamic>? $unknown)? $default,{required TResult orElse(),}) {final _that = this;
switch (_that) {
case _RecordsStats() when $default != null:
return $default(_that.$type,_that.totalReports,_that.reportedCount,_that.escalatedCount,_that.appealedCount,_that.subjectCount,_that.pendingCount,_that.processedCount,_that.takendownCount,_that.$unknown);case _:
return orElse();
}
}