DebugNotificationProvider constructor
DebugNotificationProvider({
- ObjectDetails? details,
- bool? compact,
Implementation
factory DebugNotificationProvider({
$0.ObjectDetails? details,
$core.bool? compact,
}) {
final result = create();
if (details != null) result.details = details;
if (compact != null) result.compact = compact;
return result;
}