decode static method

AdSlotSize decode(
  1. Object result
)

Implementation

static AdSlotSize decode(Object result) {
  result as List<Object?>;
  return AdSlotSize(
    width: result[0]! as int,
    height: result[1]! as int,
    position: result[2]! as String,
  );
}