ActionTextOutputDeltaFull.fromReader constructor
ActionTextOutputDeltaFull.fromReader(
- TeleportObjectReader reader
Implementation
factory ActionTextOutputDeltaFull.fromReader(TeleportObjectReader reader) {
final instance = ActionTextOutputDeltaFull();
TeleportField? field;
while ((field = reader.next()) != null) {
if (field!.isNull) continue;
switch (field.fieldId) {
case fieldIdFull: {
instance.full = field.asString();
break;
}
}
}
return instance;
}