BatchDetachObjectResponse.fromJson constructor

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

Implementation

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