decode static method

AlertNotification decode(
  1. Object result
)

Implementation

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