ActionUIUpdateTextDelta.fromJson constructor
Implementation
factory ActionUIUpdateTextDelta.fromJson(Map<String, dynamic> json) => ActionUIUpdateTextDelta(
containerId: (json['ContainerId'] as String?) ?? '',
elementId: (json['ElementId'] as num?)?.toInt() ?? 0,
delta: (json['Delta'] as String?) ?? '',
);