mirror of
https://github.com/Iconica-Development/flutter_registration.git
synced 2025-05-19 13:23:45 +02:00
16 lines
273 B
Dart
16 lines
273 B
Dart
// SPDX-FileCopyrightText: 2022 Iconica
|
|
//
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
class AuthAction {
|
|
AuthAction({
|
|
required this.title,
|
|
required this.onPress,
|
|
});
|
|
|
|
final String title;
|
|
final VoidCallback onPress;
|
|
}
|