ActionTextOutputDelta.fromJson constructor

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

Implementation

factory ActionTextOutputDelta.fromJson(Map<String, dynamic> json) => ActionTextOutputDelta(
    delta: (json['Delta'] as String?) ?? '',
);