__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
import 'package:prompting_client_ui/l10n.dart';
sealed class HomePromptError {
const HomePromptError();
String body(AppLocalizations l10n) => switch (this) {
HomePromptErrorUnknown(message: final message) => message
};
String title(AppLocalizations l10n) => switch (this) {
HomePromptErrorUnknown() => l10n.homePromptErrorUnknownTitle,
};
}
class HomePromptErrorUnknown extends HomePromptError {
HomePromptErrorUnknown(this.message);
final String message;
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| home_prompt_data_model.dart | File | 4.23 KB | 0644 |
|
| home_prompt_error.dart | File | 499 B | 0644 |
|
| home_prompt_page.dart | File | 14.24 KB | 0644 |
|