decode static method

NormalNotification decode(
  1. Object result
)

Implementation

static NormalNotification decode(Object result) {
  result as List<Object?>;
  return NormalNotification(
    todo: result[0] as int?,
  );
}