Future<bool> removeContactById(String id) async { var status = await dio.delete( "/crm/contacts/$id", ); return status.data['success']; }