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