DetachObjectResponse.fromJson constructor

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

Implementation

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