insert method

Future<int> insert(
  1. Log log
)

DB functions:--------------------------------------------------------------

Implementation

Future<int> insert(Log log) async {
  return await _flogsStore.add(await _db, log.toJson());
}