read method
Retrieves the desired resource.
Implementation
@override
Future<Data?> read(id, [Map<String, dynamic>? params]) async {
  app.sendAction(WebSocketAction(
      eventName: '$path::$readAction',
      id: id.toString(),
      params: params ?? {}));
  return null;
}