decode static method
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,
);
}
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,
);
}