decode static method
Implementation
static CallPushConfig decode(Object result) {
result as List<Object?>;
return CallPushConfig(
pushTitle: result[0] as String?,
pushContent: result[1] as String?,
pushPayload: result[2] as String?,
needBadge: result[3]! as bool,
needPush: result[4]! as bool,
);
}