mirror of
https://github.com/Iconica-Development/flutter_registration.git
synced 2025-05-19 21:33:44 +02:00
12 lines
188 B
Dart
12 lines
188 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class AuthAction {
|
||
|
AuthAction({
|
||
|
required this.title,
|
||
|
required this.onPress,
|
||
|
});
|
||
|
|
||
|
final String title;
|
||
|
final VoidCallback onPress;
|
||
|
}
|