findByPosition method

List<String> findByPosition(
  1. int x,
  2. int y, {
  3. bool raise = true,
})

Implementation

List<String> findByPosition(int x, int y, {bool raise = true}) {
  final object = obj.findByPosition(x, y, raise: raise);
  if (object == null) return [];
  return object;
}