ActionUIUpdateTextDelta.fromJson constructor

ActionUIUpdateTextDelta.fromJson(
  1. Map<String, dynamic> json
)

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?) ?? '',
);