getInstances method
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;
}