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