getDatabaseRowCount method

Future<int> getDatabaseRowCount({
  1. required String table,
})

Returns the approximate number of rows in the provided table.

Implementation

_i2.Future<int> getDatabaseRowCount({required String table}) =>
    caller.callServerEndpoint<int>(
      'insights',
      'getDatabaseRowCount',
      {'table': table},
    );