Gets form by id
Future<Form> getFormById(int id) async { final response = await _get('/api/form/$id'); return Form.fromJson(response.data); }