AttachToIndexResponse.fromJson constructor

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

Implementation

factory AttachToIndexResponse.fromJson(Map<String, dynamic> json) {
  return AttachToIndexResponse(
    attachedObjectIdentifier: json['AttachedObjectIdentifier'] as String?,
  );
}