fromSql method

  1. @override
D? fromSql(
  1. S? fromDb
)
override

Maps a column from the database back to Dart.

Implementation

@override
D? fromSql(S? fromDb) {
  return fromDb == null ? null : requireFromSql(fromDb);
}