decode static method
- Object result
Implementation
static PlaytimeExtensions decode(Object result) {
result as List<Object?>;
return PlaytimeExtensions(
subId1: result[0] as String?,
subId2: result[1] as String?,
subId3: result[2] as String?,
subId4: result[3] as String?,
subId5: result[4] as String?,
);
}