EntityMatchInfo constructor

EntityMatchInfo({
  1. int sourceEntityId,
  2. EntityBase sourceEntity,
  3. List<EntityMatchDescriptor> matches = const [],
})

Returns a new EntityMatchInfo instance.

Implementation

EntityMatchInfo({
  this.sourceEntityId,
  this.sourceEntity,
  this.matches = const [],
});