AuthTokenModel constructor
Creates an AuthTokenModel with all fields required.
For constructing instances from API responses prefer tryFromJson, which validates the structure and handles timestamp conversion.
Implementation
const AuthTokenModel({
required this.accessToken,
required this.refreshToken,
required this.tokenType,
required this.expiresIn,
required this.refreshExpiresIn,
});