decode static method

Notification decode(
  1. Object result
)

Implementation

static Notification decode(Object result) {
  result as List<Object?>;
  return Notification(
    title: result[0] as String?,
    body: result[1] as String?,
  );
}