getSyncDetails method
Get the current SyncDetails or null if sync is not yet configured
Implementation
Future<SyncDetails?> getSyncDetails({required String dbName}) async {
return await sqliteWrapperSync.query("SELECT * FROM sync_details",
singleResult: true,
params: [],
fromMap: SyncDetails.fromDB,
dbName: dbName);
}