import 'package:dartz/dartz.dart'; import 'package:flowy_sdk/protobuf/flowy-user/protobuf.dart'; import 'package:flutter/material.dart'; class NewUser { UserProfile profile; String workspaceId; NewUser({ required this.profile, required this.workspaceId, }); } abstract class IAuth { Future> signIn(String? email, String? password); Future> signUp(String? name, String? password, String? email); Future> signOut(); } abstract class IAuthRouter { void pushWelcomeScreen(BuildContext context, UserProfile userProfile); void pushSignUpScreen(BuildContext context); void pushForgetPasswordScreen(BuildContext context); void pushHomeScreen(BuildContext context, UserProfile profile, String workspaceId); }