refactor: rename ApiAuthModel to AuthModel and authData to authModel

This commit is contained in:
Udhay-Adithya
2025-06-15 22:10:38 +05:30
parent fd92206ccb
commit d046d50273
10 changed files with 96 additions and 98 deletions

View File

@@ -6,7 +6,7 @@ import 'package:apidash_core/utils/auth_utils.dart';
import 'package:seed/seed.dart';
HttpRequestModel handleAuth(
HttpRequestModel httpRequestModel, ApiAuthModel? auth) {
HttpRequestModel httpRequestModel, AuthModel? auth) {
if (auth == null || auth.type == APIAuthType.none) {
return httpRequestModel;
}