decode static method

LocalRecordingStreamInfo decode(
  1. Object result
)

Implementation

static LocalRecordingStreamInfo decode(Object result) {
  result as List<Object?>;
  return LocalRecordingStreamInfo(
    uid: result[0]! as int,
    streamType: result[1]! as int,
    streamLayer: result[2]! as int,
    layoutConfig:
        LocalRecordingLayoutConfig.decode(result[3]! as List<Object?>),
  );
}