getRowCustom2<TType1, TType2> function
Implementation
Tuple2<TType1, TType2> getRowCustom2<TType1, TType2>(
Map<String, Map<String, dynamic>> row,
) {
var tableName = row.keys.first;
var result = Tuple2<TType1, TType2>(
row[tableName]![row[tableName]!.keys.first],
row[tableName]![row[tableName]!.keys.skip(1).first],
);
return result;
}