AttachObjectResponse.fromJson constructor

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

Implementation

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