insert method

Future<int> insert(
  1. WLogModel log
)

insert

Implementation

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