| 12345678910111213141516171819202122232425262728293031323334 | import 'dart:typed_data';import 'package:flowy_sdk/protobuf/dart-notify/protobuf.dart';import 'package:dartz/dartz.dart';class NotificationParser<T, E> {  String? id;  void Function(T, Either<Uint8List, E>) callback;  T? Function(int) tyParser;  E Function(Uint8List) errorParser;  NotificationParser({this.id, required this.callback, required this.errorParser, required this.tyParser});  void parse(SubscribeObject subject) {    if (id != null) {      if (subject.id != id) {        return;      }    }    final ty = tyParser(subject.ty);    if (ty == null) {      return;    }    if (subject.hasError()) {      final bytes = Uint8List.fromList(subject.error);      final error = errorParser(bytes);      callback(ty, right(error));    } else {      final bytes = Uint8List.fromList(subject.payload);      callback(ty, left(bytes));    }  }}
 |