selfprivacy.org.app/lib/ui/components/brand_alert/brand_alert.dart

14 lines
327 B
Dart

import 'package:flutter/material.dart';
class BrandAlert extends AlertDialog {
BrandAlert({
super.key,
final String? title,
final String? contentText,
super.actions,
}) : super(
title: title != null ? Text(title) : null,
content: title != null ? Text(contentText!) : null,
);
}