7 lines
173 B
Dart
7 lines
173 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ToggleOverlayNotification extends Notification {
|
|
final bool? visible;
|
|
|
|
const ToggleOverlayNotification({this.visible});
|
|
}
|