More work with fire notifications
This commit is contained in:
parent
5fdaf239c0
commit
9dd8a7de97
24 changed files with 512 additions and 288 deletions
9
lib/objectIdUtils.dart
Normal file
9
lib/objectIdUtils.dart
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import 'package:bson_objectid/bson_objectid.dart';
|
||||
|
||||
objectIdFromJson(String json) {
|
||||
return new ObjectId.fromHexString(json);
|
||||
}
|
||||
|
||||
objectIdToJson(ObjectId o) {
|
||||
return o.toString();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue