types property

Iterable<Type> types

Return iterable of types which implemented by instance

Type from instance.runtimeType also included in returned iterable.

Implementation

Iterable<Type> get types => CombinedIterableView([
      {_instance.runtimeType},
      _types,
    ]);