getInstances method

  1. @override
Future<List<ThermionEntity>> getInstances(
  1. ThermionEntity entity
)
override

Returns all instances of entity.

Implementation

@override
Future<List<ThermionEntity>> getInstances(ThermionEntity entity) async {
  throw UnimplementedError();
  // final List<JSObject> jsInstances =
  //     await _shim.getInstances(entity).toDart;
  // return jsInstances
  //     .map((js) => ThermionEntity._fromJSObject(js))
  //     .toList()
  //     .toDart;
}