Vaani/lib/features/onboarding/models/flow.dart
2026-01-10 16:46:06 +05:30

17 lines
365 B
Dart

import 'dart:io';
import 'package:freezed_annotation/freezed_annotation.dart';
part 'flow.freezed.dart';
@freezed
sealed class Flow with _$Flow {
const factory Flow({
required Uri serverUri,
required String state,
required String verifier,
required Cookie cookie,
@Default(false) bool isFlowComplete,
String? authToken,
}) = _Flow;
}