DebugNotificationProvider constructor

DebugNotificationProvider({
  1. ObjectDetails? details,
  2. bool? compact,
})

Implementation

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