DeleteCollectionResponse.fromJson constructor

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

Implementation

factory DeleteCollectionResponse.fromJson(Map<String, dynamic> json) {
  return DeleteCollectionResponse(
    statusCode: json['StatusCode'] as int?,
  );
}