flutter_registration/lib/src/service/registration_repository.dart

12 lines
278 B
Dart
Raw Normal View History

2022-11-01 09:19:20 +01:00
// SPDX-FileCopyrightText: 2022 Iconica
//
// SPDX-License-Identifier: BSD-3-Clause
2024-08-08 10:57:20 +02:00
import "dart:collection";
2022-09-22 11:48:04 +02:00
2024-08-08 10:57:20 +02:00
/// A mixin for a registration repository.
2022-09-20 15:51:22 +02:00
mixin RegistrationRepository {
2024-08-08 10:57:20 +02:00
/// Registers a user with the given values.
Future<String?> register(HashMap values);
2022-09-20 15:51:22 +02:00
}