addTravelAllowance method
Implementation
@override
Future<Either<AppException, response.Response>> addTravelAllowance(
data, file) async {
try {
final eitherType = await networkService
.postFileUpload('travelallowance/add', data: data, files: file);
return eitherType.fold(
(exception) {
return Left(exception);
},
(response) {
return Right(response);
},
);
} catch (e) {
return Left(
AppException(
message: 'Unknown error occured',
statusCode: 1,
identifier: '${e.toString()}\nLoginUserRemoteDataSource.loginUser',
),
);
}
}