13 lines
234 B
Dart
13 lines
234 B
Dart
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
|
import 'package:shared_models/jwt.dart';
|
|
|
|
part 'auth.g.dart';
|
|
|
|
@riverpod
|
|
class JwtNotifier extends _$JwtNotifier {
|
|
@override
|
|
JWTBody? build() {
|
|
return null;
|
|
}
|
|
}
|