markAccountAsFixed method
Marks an account as fixed in the Instantly API.
Implementation
Future<void> markAccountAsFixed({
String? email,
}) async {
await _dio.post<void>(
'/account/mark_fixed',
data: {
if (email != null) 'email': email,
},
);
}