decode static method
Implementation
static SignalInfo decode(Object result) {
result as List<Object?>;
return SignalInfo(
channelId: result[0] as String?,
requestId: result[1] as String?,
channelName: result[2] as String?,
extraInfo: result[3] as String?,
globalExtraCopy: result[4] as String?,
);
}