getEntityID<O> abstract method

Object? getEntityID<O>(
  1. O object, {
  2. Type? type,
  3. dynamic idGetter(
    1. O o
    )?,
})

Returns the ID value from object for type.

Implementation

Object? getEntityID<O>(
  O object, {
  Type? type,
  dynamic Function(O o)? idGetter,
});