mapToDart method

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

Maps a column from the database back to Dart.

Implementation

@override
D? mapToDart(S? fromDb) {
  return fromDb == null ? null : requireMapToDart(fromDb);
}