import '../entities/user_auth_data.dart'; abstract class PinRepository { Future getSavedPin(); Future savePin(String? pin); Future removePin(); }