StructuredAppendInfo.fromJson constructor

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

Implementation

factory StructuredAppendInfo.fromJson(Map<String, dynamic> json) =>
    StructuredAppendInfo(
      count: (json["count"] as int),
      index: (json["index"] as int),
      id: json["id"] as String,
    );