DeleteLunaClientResponse.fromJson constructor

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

Implementation

factory DeleteLunaClientResponse.fromJson(Map<String, dynamic> json) {
  return DeleteLunaClientResponse(
    status: json['Status'] as String,
  );
}