getRowById method

TABLE_DETAIL? getRowById(
  1. String id
)

Implementation

TABLE_DETAIL? getRowById(String id) {
  return where((row) => row.id.value == id).first;
}