deleteById method
Remove por id; retorna se afetou algo.
Implementation
@override
Future<bool> deleteById(String table, Object id) async {
final r = await _client.delete(_u('$table/$id'), headers: _headers);
return r.statusCode < 400 && _decode(r)['success'] == true;
}