BatchCreateIndexResponse.fromJson constructor

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

Implementation

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