request method
Implementation
@override
Future<ArticlePhoto> request(ArticlePhoto data) async {
final dbStore = DbStoresWeebi.articlePhotos;
final int key = await dbStore.add(_database.db, data.toMap());
final raw = await dbStore.record(key).get(_database.db);
if (raw == null) {
throw 'error CreateArticlePhotoRpc null';
}
return ArticlePhoto.fromMap(raw);
}