EventFragment.from constructor

EventFragment.from(
  1. dynamic source
)

Creates a new EventFragment from any compatible source.

Implementation

factory EventFragment.from(dynamic source) => EventFragment._(
      _EventFragmentImpl.from(source is Interop ? source.impl : source),
    );