create method

Future<int> create(
  1. LogEntry object
)
inherited

Implementation

Future<TPrimaryKey> create(TDao object) async => await transaction(
      (context) async => await context.insert<TDao>(object),
    );